home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 41 / Issue 41.iso / pc / Software.dir / 00018_gotoWAPLite.ls < prev    next >
Encoding:
Text File  |  2000-12-04  |  355 b   |  20 lines

  1. on mouseWithin
  2.   cursor(280)
  3.   put "Click to read more about WAPLite 2 - PC Only" into member "InfoField"
  4. end
  5.  
  6. on mouseLeave
  7.   cursor(0)
  8.   put EMPTY into member "InfoField"
  9. end
  10.  
  11. on mouseDown
  12.   if the platform contains "Windows" then
  13.     go("Title2", "Featured")
  14.   else
  15.     if the platform contains "Macintosh" then
  16.       nothing()
  17.     end if
  18.   end if
  19. end
  20.